home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / ActiveX Controlls / NCTAudioEditor2 ActiveX DLL / NCTAudioEditor2.exe / {app} / Samples / TestDelphiAudioEditor2 / Src.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2002-10-10  |  475 b   |  29 lines

  1. unit Src;
  2.  
  3. interface
  4.  
  5. uses 
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ComCtrls, ExtCtrls;
  8.  
  9. type
  10.   TsrcFrame = class(TFrame)
  11.     Panel1: TPanel;
  12.     TrackBar1: TTrackBar;
  13.     Panel2: TPanel;
  14.     CheckBox1: TCheckBox;
  15.     Button1: TButton;
  16.     TrackBar2: TTrackBar;
  17.     Label1: TLabel;
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. implementation
  25.  
  26. {$R *.dfm}
  27.  
  28. end.
  29.